home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Educational Software Cooperative 4
/
Educational Software Cooperative 4.iso
/
truemd23
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1995-12-19
|
887b
|
35 lines
rem INSTALL.BAT
echo off
cls
echo.
echo. INSTALL TO HARD DISK (C:)
echo.
echo. This INSTALL.BAT file will copy all program files to a
echo. subdirectory on a hard disk C from a floppy in drive A.
echo. It does the following:
echo.
echo. C: change to the C drive
echo. md TRUEMC make the subdirectory TRUEMC
echo. cd TRUEMC change the current directory to TRUEMC
echo. xcopy A:\*.* copy everything on the A drive to TRUEMC
echo.
echo. The above commands can also be entered by hand, as is, or
echo. changed for your drive letters and desired subdirectory.
echo. Press the Print Screen Key to print a copy for reference.
echo.
choice /c:YN ...Install...
if errorlevel 2 goto END
if errorlevel 1 goto DOIT
:DOIT
rem echo. doit
C:
md TRUEMC
cd TRUEMC
xcopy A:\*.*
goto END
:END
rem echo. end